home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / uucico_s.lha / includes.h < prev    next >
C/C++ Source or Header  |  1992-12-01  |  660b  |  39 lines

  1.  
  2. /*
  3.  *  INCLUDES.H
  4.  */
  5.  
  6. #define NAMESIZE 256
  7.  
  8. #ifdef NOTDEF
  9.  
  10. #include <exec/types.h>
  11. #include <fcntl.h>
  12. #include <exec/exec.h>
  13. #include <devices/serial.h>
  14. #include <devices/keymap.h>
  15. #include <devices/timer.h>
  16. #include <libraries/dos.h>
  17.  
  18. #endif
  19.  
  20. #include "protos.h"         /*  other system protos  */
  21.  
  22. #include <stdarg.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #include <ctype.h>
  27. #include <time.h>
  28. #include <signal.h>
  29. #include "config.h"         /*  lib protos and config stuff */
  30. #include "xferstat.h"
  31. #include "uucico_protos.h"  /*  uucico protos               */
  32.  
  33. #ifndef TRUE
  34. #define TRUE    1
  35. #endif
  36. #ifndef FALSE
  37. #define FALSE    0
  38. #endif
  39.